Overload | Description |
---|---|
NotBeInAscendingOrder<TSelector>(Expression<Func<T,TSelector>>,String,Object[]) | Asserts that a collection is not ordered in ascending order according to the value of the specified propertyExpression. |
NotBeInAscendingOrder(IComparer<T>,String,Object[]) | Asserts that a collection is not ordered in ascending order according to the value of the specified IComparer implementation. |
NotBeInAscendingOrder<TSelector>(Expression<Func<T,TSelector>>,IComparer<TSelector>,String,Object[]) | Asserts that a collection is not ordered in ascending order according to the value of the specified propertyExpression and IComparer implementation. |
NotBeInAscendingOrder(String,Object[]) | Asserts the current collection does not have all elements in ascending order. Elements are compared using their System.IComparable.CompareTo(System.Object) implementation. |
NotBeInAscendingOrder(Func<T,T,Int32>,String,Object[]) | Asserts that a collection is not ordered in ascending order according to the provided lambda expression. |